home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-26 | 1.3 KB | 31 lines | [TEXT/MMCC] |
- //------------------------------------------------------------------------------
- // File: tabstop.h
- // Date: 9/19/94
- // Author: Bretton Wade
- //
- // Description: this file contains the class definition for a tabstop widget.
- // a tabstop widget is a widget that can be reached by tabbing.
- //
- //------------------------------------------------------------------------------
-
- #include "widget.h"
-
- #ifndef TABSTOP
- #define TABSTOP
-
- //------------------------------------------------------------------------------
- // classes
- //------------------------------------------------------------------------------
- class tabstop : public widget // user interface widget class
- { // begin
- private: // members internal to this class only
- protected: // members internal to this class hierarchy
- public: // members available externally
- tabstop (void) : widget () {} // constructor
- virtual void Hilite (bool); // tell the widget to hilite or unhilite itself
- }; // end
-
- //------------------------------------------------------------------------------
-
- #endif //TABSTOP
-